diff options
| author | Sebastien Castiel <sebastien@castiel.me> | 2023-12-07 16:44:01 -0500 |
|---|---|---|
| committer | Sebastien Castiel <sebastien@castiel.me> | 2023-12-07 16:44:01 -0500 |
| commit | 0b27f90fb76a2492c17a958b6dd807e6fbbf8030 (patch) | |
| tree | bfc9c0e533eb28b43bcded9c53020dc15bca1955 /src/app/groups/[groupId]/balances | |
| parent | 6611e3a187e5398f686449938b7cf1ddbfcb5392 (diff) | |
Titles and navigation
Diffstat (limited to 'src/app/groups/[groupId]/balances')
| -rw-r--r-- | src/app/groups/[groupId]/balances/page.tsx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/app/groups/[groupId]/balances/page.tsx b/src/app/groups/[groupId]/balances/page.tsx index ab2c582..31dbf63 100644 --- a/src/app/groups/[groupId]/balances/page.tsx +++ b/src/app/groups/[groupId]/balances/page.tsx @@ -9,8 +9,13 @@ import { } from '@/components/ui/card' import { getGroup, getGroupExpenses } from '@/lib/api' import { getBalances, getSuggestedReimbursements } from '@/lib/balances' +import { Metadata } from 'next' import { notFound } from 'next/navigation' +export const metadata: Metadata = { + title: 'Balances', +} + export default async function GroupPage({ params: { groupId }, }: { |
